home *** CD-ROM | disk | FTP | other *** search
- package org.w3c.dom;
-
- public interface Element extends Node {
- String getAttribute(String var1);
-
- Attr getAttributeNode(String var1);
-
- NodeList getElementsByTagName(String var1);
-
- String getTagName();
-
- void normalize();
-
- void removeAttribute(String var1) throws DOMException;
-
- Attr removeAttributeNode(Attr var1) throws DOMException;
-
- void setAttribute(String var1, String var2) throws DOMException;
-
- Attr setAttributeNode(Attr var1) throws DOMException;
- }
-